home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / inet / inet_ntoa.c < prev    next >
C/C++ Source or Header  |  1988-07-25  |  1KB  |  38 lines

  1. /*
  2.  * Copyright (c) 1983 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that this notice is preserved and that due credit is given
  7.  * to the University of California at Berkeley. The name of the University
  8.  * may not be used to endorse or promote products derived from this
  9.  * software without specific prior written permission. This software
  10.  * is provided ``as is'' without express or implied warranty.
  11.  */
  12.  
  13. #if defined(LIBC_SCCS) && !defined(lint)
  14. static char sccsid[] = "@(#)inet_ntoa.c    5.3 (Berkeley) 3/7/88";
  15. #endif /* LIBC_SCCS and not lint */
  16.  
  17. /*
  18.  * Convert network-format internet address
  19.  * to base 256 d.d.d.d representation.
  20.  */
  21.  
  22. #include <stdio.h>
  23. #include <sys/types.h>
  24. #include <netinet/in.h>
  25.  
  26. char *
  27. inet_ntoa(in)
  28.     struct in_addr in;
  29. {
  30.     static char b[18];
  31.     register char *p;
  32.  
  33.     p = (char *)∈
  34. #define    UC(b)    (((int)b)&0xff)
  35.     sprintf(b, "%d.%d.%d.%d", UC(p[0]), UC(p[1]), UC(p[2]), UC(p[3]));
  36.     return (b);
  37. }
  38.